+2004-09-22 Matthias Clasen <mclasen@redhat.com>
+
+ * gtk/gtkfilechooserdefault.c (selection_check_foreach_cb): Don't use
+ bitops on booleans.
+
Wed Sep 22 00:54:34 2004 Matthias Clasen <mclasen@redhat.com>
* demos/gtk-demo/pixbufs.c (do_pixbufs): Don't leak the frame
+2004-09-22 Matthias Clasen <mclasen@redhat.com>
+
+ * gtk/gtkfilechooserdefault.c (selection_check_foreach_cb): Don't use
+ bitops on booleans.
+
Wed Sep 22 00:54:34 2004 Matthias Clasen <mclasen@redhat.com>
* demos/gtk-demo/pixbufs.c (do_pixbufs): Don't leak the frame
+2004-09-22 Matthias Clasen <mclasen@redhat.com>
+
+ * gtk/gtkfilechooserdefault.c (selection_check_foreach_cb): Don't use
+ bitops on booleans.
+
Wed Sep 22 00:54:34 2004 Matthias Clasen <mclasen@redhat.com>
* demos/gtk-demo/pixbufs.c (do_pixbufs): Don't leak the frame
+2004-09-22 Matthias Clasen <mclasen@redhat.com>
+
+ * gtk/gtkfilechooserdefault.c (selection_check_foreach_cb): Don't use
+ bitops on booleans.
+
Wed Sep 22 00:54:34 2004 Matthias Clasen <mclasen@redhat.com>
* demos/gtk-demo/pixbufs.c (do_pixbufs): Don't leak the frame
info = _gtk_file_system_model_get_info (closure->impl->browse_files_model, &child_iter);
is_folder = gtk_file_info_get_is_folder (info);
- closure->all_folders &= is_folder;
- closure->all_files &= !is_folder;
+ closure->all_folders = closure->all_folders && is_folder;
+ closure->all_files = closure->all_files && !is_folder;
}
/* Checks whether the selected items in the file list are all files or all folders */